home *** CD-ROM | disk | FTP | other *** search
/ Aminet 2 / Aminet AMIGA CDROM (1994)(Walnut Creek)[Feb 1994][W.O. 44790-1].iso / Aminet / dev / amos / AMOSList0993.lzh / AMOSLIST / 000023_amos-request@svcs1.digex.net_Sun Sep 5 20:00:43 1993.msg < prev    next >
Internet Message Format  |  1993-10-03  |  2KB

  1. Received: from nextsun.INS.CWRU.Edu by access.digex.net with SMTP id AA15441
  2.   (5.65c/IDA-1.4.4 for <mcox@access.digex.com>); Sun, 5 Sep 1993 20:00:41 -0400
  3. Received: from svcs1.digex.net by nextsun.INS.CWRU.Edu with SMTP (5.65b+ida+/CWRU-1.5.2-freenet-gw)
  4.     id AA13834; Sun, 5 Sep 93 18:07:31 -0400 (from amos-request@svcs1.digex.net for mcox@access.digex.com)
  5. Received: by svcs1.digex.net id AA11501
  6.   (5.65c/IDA-1.4.4 for amos-list-out); Sun, 5 Sep 1993 16:54:59 -0400
  7. Received: from access.digex.net by svcs1.digex.net with SMTP id AA11497
  8.   (5.65c/IDA-1.4.4 for <amos-list@svcs1.digex.net>); Sun, 5 Sep 1993 16:54:57 -0400
  9. Received: from vax.mbhs.edu by access.digex.net with SMTP id AA01392
  10.   (5.65c/IDA-1.4.4 for <amos-list@access.digex.net>); Sun, 5 Sep 1993 16:54:54 -0400
  11. Message-Id: <199309052054.AA01392@access.digex.net>
  12. Date: 5 Sep 93 16:56:00 EST
  13. From: "Andrew Church" <95ACHURCH@vax.mbhs.edu>
  14. Subject: Re: Flicker/stuttering
  15. To: "amos-list" <amos-list@access.digex.net>
  16. Status: O
  17.  
  18. >>One other type of flickering I have noticed occured in the earlier
  19. >>versions of my current project.  When the screen was scrolled I noticed
  20. >>the darker colours left a bright "After image".  I have since managed to
  21. >>fix this but I do wonder why this occurs.
  22. >
  23. >Hmmm. I saw mention in a FAQ file that this could come from blitter operations
  24. >taking a bit to long (more than one frame). Bit planes are apparently copied
  25. >one at a time, and the resulting combinations can look funny.
  26.  
  27.   As I think I mentioned before (if it reached the list), this is what happens.
  28. You could wind up with 2 bitplanes from the old picture and 2 from the new one
  29. (for example).  The following code demonstrates this more clearly:
  30.  
  31. Screen Open 0,768,512,64,Laced
  32. Palette 0,$F,,$F0,,,,$F00,,,,,,,,$8F,,,,,,,,,,,,,,,,$FFF
  33. Cls 63 : Cls 0
  34.  
  35.   --Andy Church
  36.